home *** CD-ROM | disk | FTP | other *** search
/ Grand Slam 3 / Grand Slam 3.iso / 002 / inet32.arj / REPLYCHK.BAT < prev    next >
DOS Batch File  |  1995-08-23  |  673b  |  37 lines

  1. @echo off
  2. cls
  3.  
  4. REM SAMPLE BATCH FILE FOR REPLYCHK.EXE
  5. REM BY JAMES GOLDBLOON 1:109/611@FIDONET
  6. REM DEMONSTRATES USE OF ERRORLEVELS
  7. REM 0=NO MESSAGES FORMATTED 1=SOME WERE 2=HALTED ON ERRORS 3=SEMAPHORE
  8.  
  9. cd\inet
  10. replychk /n=c:\netmail
  11.  
  12. if errorlevel 3 goto working
  13. if errorlevel 2 goto halted
  14. if errorlevel 1 goto fixed
  15. goto nothing
  16.  
  17. :nothing
  18. echo No messages were formatted...
  19. goto finished
  20.  
  21. :halted
  22. echo Program was halted with errors...
  23. goto finished
  24.  
  25. :fixed
  26. echo Some netmails were processed...
  27. goto finished
  28.  
  29. :working
  30. echo A copy of this program is already running...
  31. goto finished
  32.  
  33. :finished
  34. echo Exiting this batch file now!
  35. exit
  36.  
  37.